Push Your First Code On GitHub

๐ Hey! I'm Prakash Naikwadi. I have a Bachelor's degree in Computer Engineering๐คฉ
I am currently learning๐ ๐๐๐๐ ๐๐ญ๐๐๐ค ๐๐๐ฏ๐๐ฅ๐จ๐ฉ๐ฆ๐๐ง๐ญ.
๐ ๐๐ข๐ญ๐๐ฎ๐ ๐๐ซ๐จ๐๐ข๐ฅ๐: https://github.com/prakash-naikwadi
๐๐๐ซ๐ ๐๐ซ๐ ๐๐จ๐ฆ๐ ๐ฌ๐ค๐ข๐ฅ๐ฅ๐ฌ๐๐ญ๐ฌ ๐ญ๐ก๐๐ญ ๐ ๐๐จ๐ฌ๐ฌ๐๐ฌ๐ฌ๐๐...
๐
๐ซ๐จ๐ง๐ญ ๐๐ง๐:
โข HTML5 (Intermediate Level)
โข CSS (Intermediate Level)
โข JavaScript
โข React
๐๐ซ๐จ๐ ๐ซ๐๐ฆ๐ฆ๐ข๐ง๐ ๐๐๐ง๐ ๐ฎ๐๐ ๐๐ฌ: โข Java โข C โข C++
Thank you for reading. Have a wonderful day๐ค
We all know how important is that your code should be visible on Github. So here we are discussing some basic git commands to get started.
git init
Usage: git init [repository name]
This command is used to start a new repository.
git add
Usage: git add [file]
This command adds a file to the staging area.
Usage: git add .
This command adds one or more to the staging area.
git commit
Usage: git commit -m โ[ Type in the commit message]โ
This command records or snapshots the file permanently in the version history.
Usage: git commit -a
This command commits any files youโve added with the git add command and also commits any files youโve changed since then.
git status
Usage: git status
This command lists all the files that have to be committed.
git commit
Usage: `git push origin master
This command sends the committed changes of the master branch to your remote repository.



