标签:版本 git ini 默认 添加 normal 笔记 splay 文件
git config --global user.name "Your Name"
#设置git提交时的默认用户名
git config --global user.email "Your Email@example.com"
# 设置Git提交时的默认邮箱
git init
git remote add origin <git远程仓库网址>
git pull origin master
# 拉取远程仓库分支
git push -u origin master
# 将本地更新推送到远程仓库
git add <文件名>
# 如 git add main.c
# 用 git add * 可添加全部文件
git commit -m "提交信息"
git push <远程主机名> <本地分支名>:<远程分支名>
$ git push origin
git push -u origin master
标签:版本 git ini 默认 添加 normal 笔记 splay 文件
原文地址:http://www.cnblogs.com/xinlukk/p/7411022.html