Skip to content

Commit

Permalink
fix: update references to integration branch and gitbutler binary in …
Browse files Browse the repository at this point in the history
…paths
  • Loading branch information
ndom91 committed Jan 10, 2025
1 parent 9cd0549 commit b945c08
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions content/docs/development/debugging.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ Often the most helpful thing is to look at the logs. GitButler is a Tauri app, s
<Tabs groupId="platform" items={['macOS', 'Windows', 'Linux']} persist>
<Tab value="macOS">
```bash
~/Library/Logs/com.gitbutler.app/
~/Library/Logs/gitbutler-tauri/
```
</Tab>
<Tab value="Windows">
```bash
C:\Users\[username]\AppData\Local\com.gitbutler.app\logs
C:\Users\[username]\AppData\Local\gitbutler-tauri\logs
```
</Tab>
<Tab value="Linux">
```bash
~/.config/com.gitbutler.app/logs/ [OR]
~/.local/share/com.gitbutler.app/logs/
~/.config/gitbutler-tauri/logs/ [OR]
~/.local/share/gitbutler-tauri/logs/
```
</Tab>
</Tabs>
Expand All @@ -37,7 +37,7 @@ In this directory, there should be rolling daily logs:


```bash title="Terminal"
cd ~/Library/Logs/com.gitbutler.app
cd ~/Library/Logs/gitbutler-tauri

❯ tree -L 1

Expand Down Expand Up @@ -72,7 +72,7 @@ GitButler also keeps it's own data about each of your projects. The virtual bran
<Tabs groupId="platform" items={['macOS', 'Windows', 'Linux']} persist>
<Tab value="macOS">
```bash
~/Library/Application Support/com.gitbutler.app/
~/Library/Application Support/gitbutler-tauri/
```
</Tab>
<Tab value="Windows">
Expand All @@ -82,7 +82,7 @@ GitButler also keeps it's own data about each of your projects. The virtual bran
</Tab>
<Tab value="Linux">
```bash
~/.local/share/com.gitbutler.app/
~/.local/share/gitbutler-tauri/
```
</Tab>
</Tabs>
Expand All @@ -91,7 +91,7 @@ In this folder there are a bunch of interesting things.


```bash title="Terminal"
cd ~/Library/Application\ Support/com.gitbutler.app
cd ~/Library/Application\ Support/gitbutler-tauri

❯ tree
.
Expand Down
6 changes: 3 additions & 3 deletions content/docs/features/virtual-branches/signing-commits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,17 @@ Earlier versions of GitButler would only sign with it's generated SSH key. Altho
<Tabs groupId="platform" items={['macOS', 'Windows', 'Linux']} persist>
<Tab value="macOS">
```bash
/Users/[username]/Library/Application Support/com.gitbutler.app/keys/ed25519.pub
/Users/[username]/Library/Application Support/gitbutler-tauri/keys/ed25519.pub
```
</Tab>
<Tab value="Windows">
```bash
C:\Users\[username]\AppData\Roaming\com.domain.appname\keys\ed25519.pub
C:\Users\[username]\AppData\Roaming\gitbutler-tauri\keys\ed25519.pub
```
</Tab>
<Tab value="Linux">
```bash
[userdir]/.local/share/com.gitbutler.app/keys/ed25519.pub
[userdir]/.local/share/gitbutler-tauri/keys/ed25519.pub
```
</Tab>
</Tabs>
Expand Down
2 changes: 1 addition & 1 deletion content/docs/troubleshooting/recovering-stuff.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ If you don't want to search through all your refs with `for-each-refs`, you can
```bash title="Terminal"
❯ git log
commit 2d8afe0ea811b5f24b9a6f84f6d024bb323a2db5 (HEAD -> gitbutler/integration)
commit 2d8afe0ea811b5f24b9a6f84f6d024bb323a2db5 (HEAD -> gitbutler/workspace)
Author: GitButler <[email protected]>
Date: Fri Feb 23 10:30:18 2024 +0100
Expand Down

0 comments on commit b945c08

Please sign in to comment.