-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,11 +43,11 @@ After the setup is complete, it is recommended to perform your initial commit an | |
After the project is set up, you can run the following commands to add your remote repository and push your initial commit: | ||
|
||
```bash | ||
git init | ||
git init -b main | ||
git add . | ||
git commit -m "Initial Commit" | ||
git remote add origin <[email protected]:YOURGITHUB/your-repo.git> | ||
git push -u origin master | ||
git push -u origin main | ||
``` | ||
|
||
Be sure to update the origin with the correct remote repository URL (and remove the `<>` brackets). | ||
|