开始使用新的 Github 帐户 ->
1.) 创建一个 Github 帐户(你可能已经这样做了)
2.)导航到您的应用程序文件夹(cd yourfoldername),您必须在您的应用程序文件夹中配置 git 属性。
$ git config --global user.name "Your Name" # Set your Git name
$ git config --global user.email youremail@gmail.com # Set your Git email
3.) 遵循以下步骤
$ git init # Set up Git on your project
$ git status # See tracked, untracked, and staged files
$ git add . # Add new files to Git
$ git commit -am "Initial commit" # Save your project files to Git
4.) 您的应用程序现在处于版本控制之下,现在您必须生成您的 SSH 密钥。
->生成 SSH 密钥
如果您在 Windows 上,您只需下载 Github 应用程序,它将为您节省大量手动设置。但是设置 SSH 密钥并不是那么困难。只需按照指南。
5.) 然后,您在 Github 上创建一个新存储库,它会在 Page 上告诉您输入这 2 行。你完成了 :)
$ git remote add origin git@github.com/yourusername/yourreponame.git # Set up git to push to your Github repository
$ git push -u origin master # Push your code to Github (sets the upstream the first time)
希望这可以帮助。
PS:我几周前开始学习 Rails -> 在 Skillshare 上查看这个课程 ->一个月 Rails:学习编码!