四个区:
① Workspace:工作区
② Stage:暂存区
③ Repository:本地仓库
④ Remote:远程仓库
显示未追踪文件
git status
git初始化
git init
拉取远程仓库 http协议 https://github.com/Null-wn/C_Algorithm.git
git pull https://github.com/Null-wn/C_Algorithm.git
拉取远程仓库 ssh协议 [email protected]:Null-wn/C_Algorithm.git
git pull [email protected]:Null-wn/C_Algorithm.git
提交文件
① add:从Workspace添加到Stage;
② commit:从Stage到Repository(需要附加commit信息);
③ push:从Repository到Remote。
添加text.txt到暂存区
git add text.txt
到本地仓库
git commit .txt -m"修改"
到远程仓库
git push -u origin master
标签:常用,github,Algorithm,wn,git,操作,Null,com From: https://www.cnblogs.com/weinan030416/p/17032848.html