Python Forum
Forcing a github push after major changes
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Forcing a github push after major changes
#4
It seems that you have your files untracked, so you need to add files first, after that you can commit them into the repository.  Try 
Output:
git add . git commit
in your directory before pushing.

EDIT: I have overlooked your other questions. I am not a big git expert, but from my understanding if you move or rename files/directories, from git's point of view they disappeared (so git status lists them as deleted), while renamed/moved files are untracked by git and you need to add your changes with git add . . After that you can commit and push your changes.

Git has no problems with binary files, actually it doesnt care at all - even for text files git just computes sha-1 for files and if it changes, git saves entire file (in his internal compressed format). So you can put your binary into the repository and add and commit.
Reply


Messages In This Thread
RE: Forcing a github push after major changes - by zivoni - Mar-30-2017, 10:13 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Forcing matplotlib to NOT use scientific notation when graphing sawtooth500 4 447 Mar-25-2024, 03:00 AM
Last Post: sawtooth500
  Recommendations for IMAP Push/IDLE library MikeFlorida 0 867 Jul-15-2023, 05:19 PM
Last Post: MikeFlorida
  Push video to left and remove background finndude 12 2,016 Dec-13-2022, 10:42 AM
Last Post: finndude
  I need advise with developing a brute forcing script fatjuicypython 11 5,202 Aug-21-2020, 09:20 PM
Last Post: Marbelous
  neeeed help major hussruss253 0 1,287 Dec-24-2019, 06:20 AM
Last Post: hussruss253
  Forcing input from pre-defined list. scotty501 11 6,253 Jun-18-2019, 01:49 PM
Last Post: scotty501
  Why doesn't gc delete an object without forcing a garbage collection call? AlekseyPython 5 3,810 Mar-19-2019, 02:10 AM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020