2016/04/20 Git

7  vi id_rsa.pub
   48  ssh -T [email protected]
   49  git clone [email protected]:XTpeeps/Hello-World.git
   50  cd Hello-World
   51  ls
   52  vi hello_world.php
   53  git status
   54  git add hello_world.php
   55  git status
   56  git log
   57  log
   58  git --help\
   59  git help log
   60  git-log
   61  gitlog
   62  git log
   63  git push
   64  git push simple
   65  git config --global push.default simple
   66  git push
   67  git commit -m"add hello world script by php"
   68  git log
   69  htop
   70  sudo apt-get install htop
   71  htop
   72  man
   73  man手册
   74  man手册
   75  man
   76  man -ac
   77  man ac
   78  man access
   79  git
   80  git status
   81  git log
   82  git branch
   83  ssh -t [email protected]
   84  ssh -T [email protected]
   85  cd Hello-world
   86  ls
   87  ls -l
   88  git status
   89  cd hello_word
   90  cd .git
   91  cd ~/.git
   92  cd ~
   93  ls
   94  mkdir git-tutorial
   95  ls
   96  cd git-tutorial/
   97  git init
   98  cd .git/
   99  ls
  100  cd branches
  101  ls
  102  cd ..
  103  ls
  104  git add README.md
  105  git clone [email protected]:XTpeeps/Hello-World.git
  106  cd Hello-World/
  107  ls
  108  mkdir python.txt
  109  vi python.txt/
  110  git log
  111  git add README.md
  112  touch README.md
  113  ls
  114  git status
  115  git add README.md
  116  sit status
  117  git status
  118  git commit -m "is this my 1st commit?"
  119  git add python.txt/
  120  gitstatus
  121  git status
  122  git log
  123  git log -p
  124  git log -p README.md
  125  git diff hello_world.php
  126  git diff HEAD
  127  git commit -m "add index1"
  128  git log
  129  git commit -m"add index1"
  130  git log
  131  git branch
  132  git checkout -b feature-B
  133  git branch
  134  git branch feature-B
  135  vi README.md
  136  git add README.md
  137  git commit -m"add Feature-B"
  138  git log
  139  git checkout master
  140  git push
  141  hitory
  142  history

你可能感兴趣的:(github)