Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 417 Bytes

README.md

File metadata and controls

24 lines (14 loc) · 417 Bytes

GitPractice

Git 版本控制工具练习

git pull 拉取

git clone 克隆到本地

git add 添加文件到index

git push 更新到远端

git commit 提交修改 -m " " 添加日志信息 git log 查看日志

关于分支 git branch 查看分支情况

git checkout 分支名 切换分支

git checkout -b "分支名" 新建新的分支

git push -u origin master 提交到主分支