标签:git push 名称 标签 comm 上传 git pull 时间 mit --
克隆:$ git clone https://github.com/路径/子路径.git。
同步一下远程仓库:
$ git pull orgin master
上传到仓库
(注:如果需要进入指定文件夹)进入指定文件夹
$ cd ASA-/
①列出文件
$ ls
②添加
$ git add .
③上传到仓库添加标签
$ git commit -m “添加上传的备注(一般为时间和作者)”
④(注:如果未登录填写用户名和密码,登录此步骤忽略)
提示填个人信息账号
$ git config --global user.email "XXXXXXX@qq.com"
名称
$ git config --global user.name “用户名”
小⑤上传 个人标签
$ git commit -m “张敬”
⑤推入仓库
$ git push -u origin master
标签:git push 名称 标签 comm 上传 git pull 时间 mit --
原文地址:https://www.cnblogs.com/murphyzhang/p/11670670.html