This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Basic Git Commands ====== Below are some essential Git commands to get started or check out the Git cheatsheet **Create a new repository:** <code> git init </code> **Add files to staging area:** <code> git add <file_name> </code> **Commit changes:** <code> git commit -m "Commit message" </code> **View commit history:** <code> git log </code> ==== Additional Tips ==== * [[using_ssh_keys_with_github]]: If you're working with remote repositories, you'll likely need to set up SSH keys for authentication. * [[Git configuration files]]: Your Git configuration is stored in `.gitconfig` file in your home directory. * [[Git aliases]]: Create custom shortcuts for frequently used commands. * [[Git branches]]: Use branches to manage different versions of your project. **For more in-depth information and advanced topics, refer to the official Git documentation:** [https://git-scm.com/doc](https://git-scm.com/doc)