Skip to content
Sebastian Schlicht edited this page Mar 7, 2014 · 1 revision

bugfixes .gitignore added git add

add colors to terminal when using git git config --global color.ui true

git status

last committed status (hash pointer) git reset HEAD pom.xml / ~

add and commit everything removes/modifies not staged yet git commit -a -m

display origin repository git remote show origin

push master branch to origin git push origin master

403 - forbidden: not your repository -> pull request

show branches (* marks current) git branch

show remote branches git branch -a

refresh from remote repository git pull origin master -> merge conflicts

solve conflicts via meld git mergetool

display commits git log

display difference git diff (unique sequence suffering)

change origin git remote set-url origin

pull request

owner fetches to see diffs: git fetch origin master:master git diff origin/master master

add additional repository: git remote add git fetch master

Clone this wiki locally