About adding existing projects to GitHub Enterprise Server
如果要从 CodePlex 迁移项目,请阅读迁移指南以了解更多信息。
提示:如果您最喜欢点按式用户界面,请尝试使用 GitHub Desktop 添加项目。 更多信息请参阅 GitHub Desktop 帮助中的“从本地计算机添加仓库到 GitHub Desktop”。
警告:永远不要 git 添加
、提交
或推送
敏感信息到远程仓库。 敏感信息包括但不限于:
- 密码
- SSH keys
- AWS 访问密钥
- API 密钥
- 信用卡号码
- PIN 码
更多信息请参阅“从仓库中删除敏感数据”。
Adding a project to GitHub Enterprise Server with GitHub CLI
GitHub CLI 是用于从计算机的命令行使用 GitHub Enterprise Server 的开源工具。 GitHub CLI can simplify the process of adding an existing project to GitHub Enterprise Server using the command line. To learn more about GitHub CLI, see "About GitHub CLI."
-
In the command line, navigate to the root directory of your project.
-
将本地目录初始化为 Git 仓库。
git init -b main
-
To create a repository for your project on GitHub Enterprise Server, use the
gh repo create
subcommand. Replaceproject-name
with the desired name for your repository. If you want your project to belong to an organization instead of to your user account, specify the organization name and project name withorganization-name/project-name
.gh repo create project-name
-
Follow the interactive prompts. Alternatively, you can specify arguments to skip these prompts. For more information about possible arguments, see the GitHub CLI manual.
-
Pull changes from the new repository that you created. (If you created a
.gitignore
orLICENSE
file in the previous step, this will pull those changes to your local directory.)git pull --set-upstream origin main
-
Stage, commit, and push all of the files in your project.
git add . && git commit -m "initial commit" && git push
Adding a project to GitHub Enterprise Server without GitHub CLI
- 在 您的 GitHub Enterprise Server 实例 上创建新仓库 为避免错误,请勿使用自述文件、许可或
gitignore
文件初始化新仓库。 您可以在项目推送到 GitHub Enterprise Server 之后添加这些文件。 - 打开 Terminal(终端)Terminal(终端)Git Bash。
- 将当前工作目录更改为您的本地仓库。
- 将本地目录初始化为 Git 仓库。
$ git init -b main
- 在新的本地仓库中添加文件。 这会暂存它们用于第一次提交。
$ git add . # Adds the files in the local repository and stages them for commit. 要取消暂存文件,请使用 'git reset HEAD YOUR-FILE'。
- 提交暂存在本地仓库中的文件。
$ git commit -m "First commit" # Commits the tracked changes and prepares them to be pushed to a remote repository. 要删除此提交并修改文件,请使用 'git reset --soft HEAD~1' 并再次提交和添加文件。
- 在 GitHub Enterprise Server 仓库的 Quick Setup(快速设置)页面顶部,单击 复制远程仓库 URL。
- 在终端上,添加远程仓库的 URL(将在该 URL 推送本地仓库)。
$ git remote add origin <REMOTE_URL> # Sets the new remote $ git remote -v # Verifies the new remote URL
- 推送更改(本地仓库中)到 您的 GitHub Enterprise Server 实例。
$ git push -u origin main # Pushes the changes in your local repository up to the remote repository you specified as the origin
- 在 您的 GitHub Enterprise Server 实例 上创建新仓库 为避免错误,请勿使用自述文件、许可或
gitignore
文件初始化新仓库。 您可以在项目推送到 GitHub Enterprise Server 之后添加这些文件。 - 打开 Terminal(终端)Terminal(终端)Git Bash。
- 将当前工作目录更改为您的本地仓库。
- 将本地目录初始化为 Git 仓库。
$ git init -b main
- 在新的本地仓库中添加文件。 这会暂存它们用于第一次提交。
$ git add . # Adds the files in the local repository and stages them for commit. 要取消暂存文件,请使用 'git reset HEAD YOUR-FILE'。
- 提交暂存在本地仓库中的文件。
$ git commit -m "First commit" # Commits the tracked changes and prepares them to be pushed to a remote repository. 要删除此提交并修改文件,请使用 'git reset --soft HEAD~1' 并再次提交和添加文件。
- 在 GitHub Enterprise Server 仓库的 Quick Setup(快速设置)页面顶部,单击 复制远程仓库 URL。
- 在命令提示中,添加远程仓库的 URL(将在该 URL 推送本地仓库)。
$ git remote add origin <REMOTE_URL> # Sets the new remote $ git remote -v # Verifies the new remote URL
- 推送更改(本地仓库中)到 您的 GitHub Enterprise Server 实例。
$ git push origin master # Pushes the changes in your local repository up to the remote repository you specified as the origin
- 在 您的 GitHub Enterprise Server 实例 上创建新仓库 为避免错误,请勿使用自述文件、许可或
gitignore
文件初始化新仓库。 您可以在项目推送到 GitHub Enterprise Server 之后添加这些文件。 - 打开 Terminal(终端)Terminal(终端)Git Bash。
- 将当前工作目录更改为您的本地仓库。
- 将本地目录初始化为 Git 仓库。
$ git init -b main
- 在新的本地仓库中添加文件。 这会暂存它们用于第一次提交。
$ git add . # Adds the files in the local repository and stages them for commit. 要取消暂存文件,请使用 'git reset HEAD YOUR-FILE'。
- 提交暂存在本地仓库中的文件。
$ git commit -m "First commit" # Commits the tracked changes and prepares them to be pushed to a remote repository. 要删除此提交并修改文件,请使用 'git reset --soft HEAD~1' 并再次提交和添加文件。
- 在 GitHub Enterprise Server 仓库的 Quick Setup(快速设置)页面顶部,单击 复制远程仓库 URL。
- 在终端上,添加远程仓库的 URL(将在该 URL 推送本地仓库)。
$ git remote add origin <REMOTE_URL> # Sets the new remote $ git remote -v # Verifies the new remote URL
- 推送更改(本地仓库中)到 您的 GitHub Enterprise Server 实例。
$ git push origin master # Pushes the changes in your local repository up to the remote repository you specified as the origin
延伸阅读
- "添加文件到仓库"