mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
dashify productivity.md
Signed-off-by: pasta <pasta@dashboost.org>
This commit is contained in:
parent
26d618df99
commit
ff23880053
@ -73,9 +73,9 @@ When rebuilding during development, note that running `make`, without giving a t
|
|||||||
Obviously, it is important to build and run the tests at appropriate times -- but when you just want a quick compile to check your work, consider picking one or a set of build targets relevant to what you're working on, e.g.:
|
Obviously, it is important to build and run the tests at appropriate times -- but when you just want a quick compile to check your work, consider picking one or a set of build targets relevant to what you're working on, e.g.:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
make src/bitcoind src/bitcoin-cli
|
make src/dashd src/dash-cli
|
||||||
make src/qt/bitcoin-qt
|
make src/qt/dash-qt
|
||||||
make -C src bitcoin_bench
|
make -C src dash_bench
|
||||||
```
|
```
|
||||||
|
|
||||||
(You can and should combine this with `-j`, as above, for a parallel build.)
|
(You can and should combine this with `-j`, as above, for a parallel build.)
|
||||||
@ -173,7 +173,7 @@ When looking at other's pull requests, it may make sense to add the following se
|
|||||||
```
|
```
|
||||||
[remote "upstream-pull"]
|
[remote "upstream-pull"]
|
||||||
fetch = +refs/pull/*:refs/remotes/upstream-pull/*
|
fetch = +refs/pull/*:refs/remotes/upstream-pull/*
|
||||||
url = git@github.com:bitcoin/bitcoin.git
|
url = git@github.com:dashpay/dash.git
|
||||||
```
|
```
|
||||||
|
|
||||||
This will add an `upstream-pull` remote to your git repository, which can be fetched using `git fetch --all` or `git fetch upstream-pull`. Afterwards, you can use `upstream-pull/NUMBER/head` in arguments to `git show`, `git checkout` and anywhere a commit id would be acceptable to see the changes from pull request NUMBER.
|
This will add an `upstream-pull` remote to your git repository, which can be fetched using `git fetch --all` or `git fetch upstream-pull`. Afterwards, you can use `upstream-pull/NUMBER/head` in arguments to `git show`, `git checkout` and anywhere a commit id would be acceptable to see the changes from pull request NUMBER.
|
||||||
|
Loading…
Reference in New Issue
Block a user