
git
DuanKun7323
这个作者很懒,什么都没留下…
展开
-
git学习记录三
一, 添加远程仓库 1.要关联一个远程仓库,使用命令git remote add origin https://github.com/username/learngitt.git 2.关联后,使用命令git push -u origin master 第一次推送master分支的所有内容 3.从后,每次本地提交后,只要有必要,就可以使用命令git push origi...原创 2018-09-26 23:29:58 · 136 阅读 · 0 评论 -
git学习记录二
一.版本回退 duankun@ubuntu:~/learngit$ git log commit 8e749cbd2e6be927c4aa6ffcd8e56df142457654 Author: duankun <18301357323@613.com> Date: Wed Sep 26 00:41:24 2018 -0700 second develop comm...原创 2018-09-26 19:47:28 · 208 阅读 · 0 评论 -
git学习记录一
一.git 安装。 1.Linux安装。可以试着输入git,看系统中是否安装git,如果没有安装会提示: $ git The program 'git' is currently not installed. You can install it by typing: sudo apt-get install git 通过sudo apt install git 进行gi...原创 2018-09-26 16:17:55 · 177 阅读 · 0 评论