赞
踩
git config --global user.name "your user name"
git config --global user.email "your user email"
在项目文件的文件夹进入黑窗口:
或者进入git操作窗:点击项目文件夹,右键点击 Git Bash Here
,
进入后:
git init
git add.
git commit -m "备注信息"
git remote add origin
git init
:会创建一个.git
文件,初始化本地git仓库;git add .
:将本地仓库内所有文件添加到缓冲区;git commit -m "你的提交备注"
:把文件提交到版本库,输入提交备注;git remote add origin 远程库地址
:把本地仓库与远程仓库管理;git push -u origin master
:把本地代码推送到远程代码仓库。同样进入cmd 或者 git bash here;然后:
git add .
:将本地仓库内的所有文件添加到缓冲区;git commit -m "提交备注"
:把文件提交到版本库;git pull origin master
:把远程仓库的代码拉下来合并到本地;git push origin master
:把本地代码推送到远程代码仓库。Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。