Git簡單用法

本地項目上傳到github

  • 在github上新建 repositories
  • 在終端中切換到本地項目文件夾路徑下,初始化 git init
  • 添加github遠程倉庫 git remote add origin <server> ,server替換成倉庫路徑,如:https://github.com/ <用戶名> / <倉庫名> .git
  • 將本地文件添加到git: git add <filename>,添加所有可用git add *
  • 提交 git commit -m "提交註釋"
  • 將本地項目文件上傳到倉庫 git push -u origin master

over!git

相關文章
相關標籤/搜索