Tagged Questions

3
votes
4answers
964 views

Unable to Git-add with force

I get git-status at ~/bin: # Untracked files: # (use "git add <file>..." to include in what will be committed) # # screen/dev/ I run git add --force screen/dev/ I get the same ...
1
vote
1answer
110 views

git pull analogous to / opposite of git push -f?

Sometimes, esp. when I'm the only one working on a remote repository, I like rewriting the history with git rebase -i and git push origin master -f. How do I do a forced git pull origin master ...