What's important to remember when pushing changes to a remote?
git remote
git push
without any repositories or branchesgit push
with the remote and the branch we want to pushNice! We need to make sure that we commit changes before pushing with git push
. If the remote isn't listed when we use git remote
, we need to add it.
Close! We need to make sure that we commit changes before pushing with git push
. If the remote isn't listed when we use git remote
, we need to add it.