git init
: initialize a git repository
git remote add origin https://github.com/akcgjc007/avl_tree.git
: Connect your git to an existring online repositorygit remote -v
: Show connected repositories
git add .
: Add all files present in the current directory.git add
: Add a particular file.