赞
踩
我的项目文件夹是 F:\00project\demo\test demo\2048
在打开的Git Bash窗口输入指令,创建本地仓库并拉取代码或者直接用git克隆自动创建本地仓库并获取代码
输入
git init
git remote add origin
仓库地址
git remote -v
git pull origin master
git拉取远程代码
git clone
https://xxx.git
git拉取远程指定分支下代码(-b 分支名称)
git clone -b v2.8.1
https://xxx.git
git pull
拉取一下最新代码,避免代码冲突)1、将项目上所有的文件添加到本地仓库中
(如果想添加某个特定的文件,只需把.
换成这个特定的文件名即可)
git add
.
2、对这次提交的代码添加注释,“”引号内写注释
git commit -m
"first commit"
3、这是把代码上传到github仓库
git push
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。