git 常用

Posted kisstherain

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 常用相关的知识,希望对你有一定的参考价值。

#  初始化git

…or create a new repository on the command line

 
echo "# init" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/kisstherain8231/init.git
git push -u origin master

…or push an existing repository from the command line

 
git remote add origin https://github.com/kisstherain8231/init.git
git push -u origin master

# 修改用户名称

git 修改当前的project的用户名的命令为:

> git config user.name 你的目标用户名;
1
git修改当前的project提交邮箱的命令为:

> git config user.email 你的目标邮箱名;
1
如果你要修改当前全局的用户名和邮箱时,需要在上面的两条命令中添加一个参数,–global,代表的是全局。

命令分别为:

> git config --global user.name 你的目标用户名;
1
> git config --global user.email 你的目标邮箱名;









以上是关于git 常用的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

如何管理在每个 git 版本中添加私有代码片段?

使用 Git 来管理 Xcode 中的代码片段

markdown Git代码片段

VSCode 常用插件

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段