Git local repository
Git config --global user. Email git config --global push. Default simple git config --global push git config --global core.quotepath false git config --global core.editor "code --wait" git config --global core.autocrlf input git config --global --listCopy the code
Git commit -m "" # git commit -v # Git reflog git reflog git reflog git reflog git reflog Git branch -d git branch -d git branch -d git branch -dCopy the code
Git remote repository
Cat ~/. SSH /id_rsa.pub SSH -t [email protected] git remote add git@xxxxxxx git push -u git push -u git push -f git pull Git clone git@xxxx < optional save as directory >Copy the code
Use bash alias instead of Git commands
vi ~/.bashrc alias ga="git add" alias gc="git commit -v" alias gl="git pull" alias gp="git push" alias gco="git Git glog="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit -- | less"Copy the code