• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:no +full:- +full:git +full:- +full:commit

13 $ git clone https://github.com/username/libuv.git
15 $ git remote add upstream https://github.com/libuv/libuv.git
23 API/ABI or affect the run-time behavior of applications get rejected.
39 $ git checkout -b my-feature-branch -t origin/v1.x
50 * Code that is specific to unix-y platforms should be placed in `src/unix`, and
53 * Source code that is Windows-specific goes into `src/win`, and related
62 * Internal, non-static functions should be prefixed with `uv__`.
64 * Use two spaces and no tabs.
68 * Ensure that lines have no trailing whitespace, and use unix-style (LF) line
71 * Use C89-compliant syntax. In other words, variables can only be declared at
72 the top of a scope (function, if/for/while-block).
87 ### COMMIT subsection in CONTRIBUTING
89 Make sure git knows your name and email address:
92 $ git config --global user.name "J. Random User"
93 $ git config --global user.email "j.random.user@example.com"
96 Writing good commit logs is important. A commit log should describe what
105 A good commit log looks like this:
108 subsystem: explaining the commit in one line
110 Body of commit message is a few lines of text, explaining things
114 The body of the commit message can be several paragraphs, and
115 please do proper word-wrap and keep columns shorter than about
116 72 characters or so. That way `git log` will show things
121 run `git shortlog` or `git log --oneline`.
123 Check the output of `git log --oneline files_that_you_changed` to find out
129 Use `git rebase` (not `git merge`) to sync your work from time to time.
132 $ git fetch upstream
133 $ git rebase upstream/v1.x # or upstream/master
140 `test/` directory. Each new test needs to be registered in `test/test-list.h`.
143 - `CMakeLists.txt`: add the file's name to the `uv_test_sources` list.
144 - `Makefile.am`: add the file's name to the `test_run_tests_SOURCES` list.
150 there are no test regressions.
155 $ git push origin my-feature-branch
162 to address, apply your changes in a separate commit and push that to your