码迷,mamicode.com
首页 > 其他好文 > 详细

git 常用

时间:2019-01-05 13:25:10      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:mit   rom   ble   git add   sel   user   nta   命令   常用   

#  初始化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 常用

标签:mit   rom   ble   git add   sel   user   nta   命令   常用   

原文地址:https://www.cnblogs.com/kisstherain/p/10223930.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!