Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 418 Bytes

git-commit-file.md

File metadata and controls

49 lines (30 loc) · 418 Bytes

Committing files

Status

git status

Git Add

git add .

# OR

git add --all

# OR

git add hello-world.js

# OR

git add dir/

Check status

git status

Commit

git commit -am "hello world changes"

-am : All commits with message

Push

git push -u origin branchName

# OR

git push # pushes the current branch to the configured upstream