Home | 簡體中文 | 繁體中文 | 雜文 | Search | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | Email

第 7 章 command

目錄

7.1. git-add - Add file contents to the index
7.2. git-status - Show the working tree status
7.3. git-commit - Record changes to the repository
7.4. git-show - Show various types of objects
7.5. git-checkout - Checkout and switch to a branch
7.5.1. checkout master
7.5.2. checkout branch
7.6. git config

7.1. git-add - Add file contents to the index

		
$ echo 'hello world!!!'> newfile
$ git-add newfile
		
		
comments powered by Disqus