Adding locally hosted code to GitHub
Adding Locally Hosted Code to GitHub
====================================
Initializing a Git repository
=============================
1. Open Terminal.
2. Navigate to the root directory of your project.
3. Initialize the local directory as a Git repository. By default, the initial branch is called main.
If you’re using Git 2.28.0 or a later version, you can set the name of the default branch using -b. ::
$ git init -b main
4. Add the files in your new local repository. This stages them for the first
commit. ::
# Adds the files in the local repository and stages them for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.
$ git add .
5. Commit the files that you've staged in your local repository. ::
# Commits the tracked changes and prepares them to be pushed to a remote repository. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again.
$ git commit -m "First commit"
Importing a Git repository with the command line
================================================
1. Create a new repository on GitHub.com. To avoid errors, do not initialize the new repository with README, license, or gitignore files. You can add these files after your project has been pushed to GitHub. For more information, see "Creating a new repository."
2. At the top of your repository on GitHub.com's Quick Setup page, click to copy the remote repository URL.
3. Open Terminal.
4. Change the current working directory to your local project.
5. Add the URL for the remote repository where your local repository will be pushed. ::
# Sets the new remote
$ git remote add origin <REMOTE_URL>
# Verifies the new remote URL
$ git remote -v
6. Push the changes in your local repository to GitHub.com. ::
# Pushes the changes in your local repository up to the remote repository you specified as the origin
$ git push origin main
No comments:
Post a Comment