Recently Updated Pages
git: modify specific commit
You can use git rebase. For example, if you want to modify commit COMMIT, run: git rebase --...
git: remove specific commit
To delete a special commit look for it's id (COMMIT) and do: git rebase --onto COMMIT^ COMMI...
git: Invalid executable path
Error message on windows: Invalid executable path: This is due to github.com/git-for-wi...
git: make alias to open github in browser
Make an alias hub for git: git config --global alias.hub '!f() { open "$(git ls-remote --get-url...
git: login with deploy key
Generate a new ssh key: ssh-keygen -t ed25519 -C "git@simpel.cc" Name it like "id_githu...
zsh: history expansion
http://zsh.sourceforge.net/Doc/Release/Expansion.html
git: flight rules or how to
This is a cook book for git use cases:github.com/k88hudson/git-flight-rules#i-want-to-start-a-loc...
git: pushing to multiple repos
You can push to more then one instance but fetch/pull only from one. Main repo will be set: ...
git: delete remote branch
To remove a remote branch use: git push origin --delete <branch>
git: delete remote branch
First go out of the branch you want to remove. Then: git branch -D $BRANCH && git push origin --...
git deploy on simpel.cc
Activate a webhook on github. Go to repos settings: gh browse -s On github you do the f...
git error: repository not found
Following error messages: ERROR: Repository not found. fatal: Konnte nicht vom Remote-Repos...
git: clear history of repository
### Remove the history from rm -rf .git ### recreate the repos from the current content ...
git error: gpg beim Signieren der Daten fehlgeschlagen
stackoverflow.com/questions/41052538/git-error-gpg-failed-to-sign-data#41054093 Hot fix: run gpg...
git - error: src refspec main does not match any
I made a repo on github and did git init on folder. Then I git remote add origin REPO and git bra...
git push - fatal: protocol error: bad line length character
fatal: protocol error: bad line length character: load Auf dem NDR-Client. Als ich in de...
git always asks for user and password
activate: git config credential.helper store Next push or pull you will be asked for cr...
git rename master to main
https://www.git-tower.com/learn/git/faq/git-rename-master-to-main
git fetch / pull remote branch
If you don't created that branch but want to follow and fetch: git checkout --track origin/b...
git init on server
git init --bare --shared REPO.git