HEAD This is the Hello World example from the git project.
Git was used to demonstrate:
- commits
- branching
- merging
- rebasing
- tags
- remotes
- conflict resolution
This project demonstrates Git version control concepts.
This project demonstrates Git version control concepts including commits, branching, merging, rebasing, and working with remote and bare repositories.
- hello.sh → main script
- lib/greeter.sh → reusable greeting function
--t
<<<<<<< HEAD
- Simple hello world script using echo
- Modular version using greeter function
- Adds lib/greeter.sh
- Improves structure and reusability
-
commits
-
branching
-
diff
-
modular code design
-
Contains stable version of the project
-
Includes interactive greeting implementation
- Feature branch
- Introduces modular design using greeter function
- Demonstrates branching and code separation
Tracked incremental changes in the project.
Used to isolate feature development from main code.
Combined changes from different branches.
Manually resolved conflicting changes between branches.
Rewritten commit history for a linear structure.
Connected project to a shared repository.
Used as a central server-like repository without working directory.
Simulated another developer working on the project.
This project simulates a real-world Git workflow used in collaborative software development. greet be0fc7c07dd351d67c17335fd90ffe7c50d6b640