此过程假设您已经:
- 在 GitHub Enterprise Server 上创建仓库,或者有一个您要参与的由其他人所拥有的现有仓库。
- 在您的电脑上本地克隆仓库
警告:永远不要 git 添加
、提交
或推送
敏感信息到远程仓库。 敏感信息包括但不限于:
- 密码
- SSH keys
- AWS 访问密钥
- API 密钥
- 信用卡号码
- PIN 码
更多信息请参阅“从仓库中删除敏感数据”。
- On your computer, move the file you'd like to upload to
GitHub Enterprise Server into the local directory that was created when you cloned the repository. 1. 打开 Terminal(终端)Terminal(终端)Git Bash。 1. 将当前工作目录更改为您的本地仓库。 1. 将要提交的文件暂存到本地仓库。
$ 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' 并再次提交和添加文件。
- 推送更改(本地仓库中)到 your GitHub Enterprise Server instance。
$ git push origin your-branch # 将本地仓库中的更改推送到指定为源的远程仓库