1. git init
2. git add .
3. git status
4. git commit -m 'your message'
5. git remote add origin 'your_url_name'
6. git push -u origin master //then login w/ your creds
1. git init
2. git add .
3. git status
4. git commit -m 'your message'
5. git remote add origin 'url_of_your_directory.git'
6. git push -u origin master //then login to github
git: git add . git commit -m "$m" git push -u origin master
$ git add .github/workflows/release-package.yml
$ git commit -m "workflow to publish package"
$ git push
git init
2. git add .
3. git status
4. git commit -m 'your message'
5. git remote add origin 'your_url_name'
6. git push -u origin master //then login w/ your creds
git add .
git commit -m "your message"
git push
git config --global user.email "jajounes@gmail.com"
git config --global user.name "eu20papar"
git add .
# Adds the file to your local repository and stages it for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.