Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: nice commit name #27

Open
wants to merge 1 commit into
base: task/change-commit-name
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea
.vsc
node_modules
6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

69 changes: 69 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions change-commit-name/commit-me.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('Change my name, change my name!')
17 changes: 17 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Git Mastery Workshop

Welcome to the Git Mastery Workshop! This workshop is designed to help you understand the basics of Git version control and enhance your collaboration skills in software development projects.

## What is Git?

Git is a distributed version control system that allows you to track changes in your codebase, collaborate with others, and easily manage different versions of your project.

## Requirements

To participate in this workshop, you will need:

- A computer with Git installed (Download: [https://git-scm.com/downloads](https://git-scm.com/downloads))
- A text editor of your choice (e.g., Visual Studio Code, Sublime Text, or Atom)

### Space for conflict
Did you know that you can use `git blame` to find out who last modified each line of a file? Just run `git blame <file>` to see the commit hash and author for each line.