You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This step, as described, adds the indicated remote to the local git and try to syncronyze the branches. But, there are two problems:
If there are no commits yet - which will be the case when setting everything up - you will get the following in the pop-up window:
>>> C:/Program Files/Git/bin/git.exe checkout -B main
Switched to a new branch 'main'
>>> C:/Program Files/Git/bin/git.exe push -u csvyr main
error: src refspec main does not match any
error: failed to push some refs to 'https://github.com/dalonsoa/csvyr'
The next step is partly redundant. The previous step already adds the remote, although it does not push the changes (as it fails).
First committing the changes and then following the steps above will not work, as the main branch would already exist. I think that the simplets process would be to:
Create an initial commit
Add the remote
Push the changes
So, we skip the "Connect to GitHub" step.
The text was updated successfully, but these errors were encountered:
This step, as described, adds the indicated remote to the local git and try to syncronyze the branches. But, there are two problems:
First committing the changes and then following the steps above will not work, as the
main
branch would already exist. I think that the simplets process would be to:So, we skip the "Connect to GitHub" step.
The text was updated successfully, but these errors were encountered: