首页 > 其他 > 详细

Git简单使用

时间:2019-08-18 20:00:28      阅读:90      评论:0      收藏:0      [点我收藏+]

https://www.bootcss.com/p/git-guide/

  • 添加全局的变量

git config --global user.name "runoob"
git config --global user.email test@runoob.com

 

  • 创建Git仓库

mkdir Repository
cd Repository
git init

 

  • 添加文件置于栈存区

git add "your file name"
  • 提交文件到仓库

git commit -m "information"
  • 查看状态

git status

 

Git简单使用

原文:https://www.cnblogs.com/profileBlogs/p/11373595.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!