#source control
5 posts tagged source control. Clear filter
-
Git Untrack Already Tracked Files
To remove files that are currently being tracked by git, you have to remove them from the "cache". Note, doing this will NOT delete the file on your local machine. It will still be there but not be...
-
How to Remove Your Last Git Commit
Remove your last commit (if you haven't pushed yet) To see changes that have been committed and their position in HEAD And to undo your previous reset and advance the cursor to the reference...
-
Working with Branches in Git
Show all the branches Create a new branch Use that branch Pushing the new branch to a remote server Pulling that branch down on another machine Listing all branches on other machine Updating other...
-
git checkout -- file-in-question.oh-my
Problem: using git and one file, like your db/schema.rb, is out of whack with the latest branch. If you run git pull and you get a failed merge and no update. You can of course, edit the conflicts...
-
the simple things with git
Git can track the file permissions on your source. This can be good, but for small projects on a webserver where permissions change from time to time, and permissions on development app don't match...