You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git-cdflow provides 64-bit installation for GNU/Linux and Mac OS X.
6
+
7
+
1. Download the tar.gz file for your platform from the [release page](https://github.com/Etiqa/git-cdflow/releases)
8
+
2. Extract the archive
9
+
```bash
10
+
tar xvzf git-cdflow.tar.gz
11
+
```
12
+
3.`cd` to the directory you extracted the archive, for example `cd /Users/johndoe/git-cdflow`
13
+
4.`cd` to the bin subdirectory `cd bin`
14
+
5. Test that the toolkit is functional
15
+
```bash
16
+
./git-cdflow version
17
+
```
18
+
6. Append the git-cdflow bin directory to your `PATH` environment variable. There are different ways to do it, for example adding the following row to your `~/.bashrc` file
19
+
```bash
20
+
export PATH=$PATH:/Users/johndoe/git-cdflow/bin
21
+
```
22
+
7. Verify that the binaries will be found by the shell:
23
+
```bash
24
+
source~/.bashrc
25
+
which git-cdflow
26
+
```
27
+
8. Your configuration should be done and git-cdflow should be recognized as a git plugin, so you can run it without the dash:
0 commit comments