使用git

一、配置git

进入git配置文件:

vim ~/.gitconfig

然后添加以下内容:

[user]
    name=MR-Addict
    email=2750417853@qq.com
[http]
    proxy=http://127.0.0.1:7890
[https]
    proxy=http://127.0.0.1:7890
[init]
    defaultBranch=main
[pull]
    ff=only

二、常用命令

查看提交记录:

git log

查看当前状态:

git status

回退版本:

git reset --hard $hash_value_of_last_commit

查看本地配置:

git config --list

查看全局配置:

git config --global --list

编辑全局配置:

git config --global --edit

保存系统登录验证:

git config --system credential.helper store

重置系统登录验证:

git config --system --unset credential.helper

只拉取不提交:

git config --global pull.ff only

设置本地默认分支:

git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/$branch_name

删除本地和远程分支:

git branch -D $branch_name
git push --delete $branch_name

三、首次提交模板

添加基本内容:

git init
echo "# Test" > README.md
git add README.md
git commit -m "First commit"

添加远程仓库链接:

git remote add origin git@github.com:mr-addict/test.git

更改默认分支名为main:

git branch -M main

推送提交到远程仓库:

git push -u origin main