Git Basic Command

Here are few basic git command for beginners. git init –To Initialize git git add filename — To Add Specific File git add . —It Adds all the files git add . –force —Forcefully it adds all the files git commit -m “comment” — It Commits previously added files git remote add origin “Put URL of your git” –It Adds to provided git e.g. git … Continue reading Git Basic Command