Håvard Ose Nordstrand 1 年之前
父节点
当前提交
fdac4c2e51
共有 3 个文件被更改,包括 35 次插入2 次删除
  1. 1 1
      general/linux.md
  2. 2 1
      index.md
  3. 32 0
      soft-eng/git.md

+ 1 - 1
general/linux-general.md → general/linux.md

@@ -28,7 +28,7 @@ breadcrumbs:
 
 - Environment variables from `*/environment.d/*.conf` aren't visible for login sessions when using systemd. `/etc/environment` works, though. See [systemd#7641](https://github.com/systemd/systemd/issues/7641).
 
-## Commands
+## Programs
 
 ### General
 

+ 2 - 1
index.md

@@ -47,7 +47,7 @@ Random collection of config notes and Miscellanea. _Technically not a wiki._
 
 - [Computer Testing](/general/computer-testing/)
 - [General](/general/general/)
-- [Linux General](/general/linux-general/)
+- [Linux General](/general/linux/)
 
 ## High-Performance Computing (HPC)
 
@@ -170,6 +170,7 @@ Random collection of config notes and Miscellanea. _Technically not a wiki._
 - [Data Stuff](/soft-eng/data/)
 - [Database Management Systems (DBMSes)](/soft-eng/dbmses/)
 - [GNU Compiler Collection (GCC)](/soft-eng/gcc/)
+- [Git](/soft-eng/git/)
 - [Go (Language)](/soft-eng/go/)
 - [Licensing](/soft-eng/licensing/)
 - [OpenMP](/soft-eng/openmp/)

+ 32 - 0
soft-eng/git.md

@@ -0,0 +1,32 @@
+---
+title: Git
+breadcrumbs:
+- title: Software Engineering
+---
+{% include header.md %}
+
+## General
+
+- Signing commits:
+    -
+
+## Commands
+
+## Config
+
+### Example Config
+
+```ini
+[user]
+        name = <full_name>
+        email = <email_addr>
+[commit]
+        gpgsign = false
+[core]
+        autocrlf = input
+        eol = lf
+```
+
+(Keep up to date with [HON95/configs](https://github.com/HON95/configs/blob/master/git/config).)
+
+{% include footer.md %}