We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b77dce commit eb6550dCopy full SHA for eb6550d
content/notes/simple-git-workflow-guide.md
@@ -7,7 +7,7 @@ tags:
7
- git
8
draft: false
9
created: 2025-10-12T16:21
10
-updated: 2026-01-02T14:02
+updated: 2026-01-04T07:28
11
---
12
A minimal guide covering the essential Git commands for daily team development.
13
@@ -18,6 +18,9 @@ A minimal guide covering the essential Git commands for daily team development.
18
git config --global user.name "Your Name"
19
git config --global user.email "your.email@company.com"
20
21
+# Configure default branch to main
22
+git config --global init.defaultBranch main
23
+
24
# Verify your config
25
git config --list
26
```
0 commit comments