Skip to content

This is repository for Git testing, theres also helpful tips for beginners like me on how to use it.

Notifications You must be signed in to change notification settings

Frogerall/git_test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 

Repository files navigation

Project Title

Git Test

Description

My first Git repository—nothing fancy, just a record of my initial attempts at using Git. Expect a mix of commits and exploration as I navigate through version control for the first time.

Getting Started

Dependencies

  • Git installed on your system.

Ensure Git is installed on your machine before proceeding.

Installing

  1. Download and install Git from the official website.
  2. Follow the installation instructions based on your operating system.
  3. No additional modifications are needed; you're ready to use Git!

Executing program

To run Git, follow these steps:

  1. Open your terminal or command prompt.
  2. Navigate to the directory where you want to use Git.
  3. Initialize a new Git repository or clone an existing one:
    git init
    or
    git clone <repository_url>
  4. Start making commits to track changes:
    git add .
    git commit -m "Your commit message here"
  5. Push changes to a remote repository:
    git push origin main

Now you're set to use Git for version control... this is a very simple guide when i first start using Git.

(back to top)

Help

If you encounter common problems or issues while using Git, here are three tips to help you:

  • Issue: Forgetting to configure your identity.

    git config --global user.email "[email protected]"
    git config --global user.name "Your Name"
    
  • Issue: Making changes without creating a branch.

    git branch feature_branch    # Create a new branch
    git checkout feature_branch  # Switch to the new branch

Remember to check the official Git documentation for more detailed assistance.

Authors

Author:

You can reach out to me for suggestions, comments, or just to chat:

(back to top)

Acknowledgments

Inspiration, code snippets, etc.

About

This is repository for Git testing, theres also helpful tips for beginners like me on how to use it.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published