使用命令行提交文件到仓库
您可以使用命令行将现有文件上传到 GitHub Enterprise 仓库。
提示:您也可以从 GitHub Enterprise 网站添加现有文件到仓库。
此过程假设您已经:
- 在 GitHub Enterprise 上创建仓库,或者有一个您要参与的由其他人所拥有的现有仓库。
- 在您的电脑上本地克隆仓库
警告:永远不要 git 添加
、提交
或推送
敏感信息到远程仓库。 敏感信息包括但不限于:
- 密码
- SSH keys
- AWS 访问密钥
- API 密钥
- 信用卡号码
- PIN 码
更多信息请参阅“从仓库中删除敏感数据”。
-
在计算机上,将要上传到 GitHub Enterprise 的文件移入在克隆仓库时创建的本地目录。
-
打开 Terminal(终端)Terminal(终端)Git Bash。
-
将当前工作目录更改为您的本地仓库。
-
将要提交的文件暂存到本地仓库。
$ git add . # Adds the file to your local repository and stages it for commit. 要取消暂存文件,请使用 'git reset HEAD YOUR-FILE'。
-
提交暂存在本地仓库中的文件。
$ git commit -m "Add existing file" # Commits the tracked changes and prepares them to be pushed to a remote repository. 要删除此提交并修改文件,请使用 'git reset --soft HEAD~1' 并再次提交和添加文件。
-
推送更改(本地仓库中)到 您的 GitHub Enterprise Server 实例。
$ git push origin your-branch # Pushes the changes in your local repository up to the remote repository you specified as the origin