1

/Users/OSX/Documents/Git/によってgitとして初期化したこのローカルディレクトリがありますgit init

/Users/OSX/Documents/Project/Testライブラリ全体をたとえばgitリポジトリにプッシュするにはどうすればよいですか?

4

1 に答える 1

3
  1. Copy /Users/OSX/Documents/Project/Test into your actual git repo so it can be tracked
  2. change directory into /Users/OSX/Documents/Git
  3. git add Test to add the Test directory to be tracked by git
  4. git commit -m "Added Test to repo" to commit it to the repo
于 2012-10-12T04:57:25.857 に答える