Skip to content

anderson28/new-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Project "new-project"

This project is created to demonstrate basic Git workflow.

Developer Instructions

  1. Clone the repository:

    git clone <repository URL>
  2. Switch to the development branch:

    git checkout development
  3. Make necessary changes in the README.md file using your preferred text editor.

  4. Add changes to the staging area:

    git add README.md
  5. Commit the changes with a descriptive message:

    git commit -m "Commit description"
  6. Push the changes to the remote repository:

    git push origin development
  7. Check the status and ensure everything is up to date:

    git status
  8. Switch back to the main branch and merge the changes:

    git checkout main
    git merge development
  9. Again, check the status and commit the changes:

    git status
    git commit -m "Merge changes from development branch"
  10. Push the changes to the remote repository:

    git push origin main
  11. Your changes are successfully uploaded and merged with the main branch. Enjoy

About

This repository is intended for use in the "Prometheus. DevOps and Kubernetes" course in week 2.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published