You can obtain source releases from http://git-scm.com/. Alternatively, most
operating systems have a way to obtain a modern version of Git through the
package management system (e.g, yum, brew, etc.).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Fatal error in MPI_Finalize: Other MPI error, error stack: | |
| MPI_Finalize(293).................: MPI_Finalize failed | |
| MPI_Finalize(213).................: | |
| MPID_Finalize(117)................: | |
| MPIDI_CH3U_VC_WaitForClose(385)...: an error occurred while the device was waiting for all open connections to close | |
| MPIDI_CH3I_Progress(367)..........: | |
| MPID_nem_mpich2_blocking_recv(904): | |
| MPID_nem_tcp_connpoll(1838).......: | |
| state_listening_handler(1906).....: accept of socket fd failed - Socket operation on non-socket | |
| Fatal error in MPI_Finalize: Other MPI error, error stack: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #compdef git-alias | |
| #description show shell instructions for wrapping git | |
| _arguments \ | |
| '-s[output shell script suitable for eval]' \ | |
| '1::shell:(zsh bash csh)' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # variables for custom "silent-rules" for F90 modules | |
| mod_verbose = $(mod_verbose_$(V)) | |
| mod_verbose_ = $(mod_verbose_$(AM_DEFAULT_VERBOSITY)) | |
| mod_verbose_0 = @echo " MOD " $@; | |
| # we "manually" build the f90 sources and add them with LIBADD | |
| lib_lib@MPILIBNAME@f90_la_SOURCES = | |
| lib_lib@MPILIBNAME@f90_la_LIBADD += src/binding/f90/mpi_constants.lo | |
| # now force libtool FC rules/variables to be generated and cause FC linking to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- ./Completion/Unix/Command/_git 2012-03-06 14:04:43.000000000 -0600 | |
| +++ /usr/local/share/zsh/functions/_git 2013-01-03 14:05:17.000000000 -0600 | |
| @@ -4706,7 +4706,10 @@ | |
| local -a third_party_commands | |
| local command | |
| for command in $_git_third_party_commands; do | |
| - (( $+commands[git-${command%%:*}] )) && third_party_commands+=$command | |
| + # XXX DJG disabling this filter, since it interferes with my "hub" | |
| + # subcommand completions. See https://github.com/defunkt/hub/issues/231 | |
| + #(( $+commands[git-${command%%:*}] )) && third_party_commands+=$command |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __thread int t = 0xdeadbeef; | |
| int foo(void) | |
| { | |
| return t; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| wOFF�����`X�����?\�����������������������FFTM��X������fi??GDEF��t������ O�OS/2��?���?���`x?e?cmap��?���V��b?Iֈcvt ��,�������Dgasp��0������??�glyf��8��U��?�?M?head��WX���/���6_??hhea��W?������$hmtx��W?���?��N?ni?loca��XT��F��F8i | |
| ?maxp��Z?��� ��� ?name��Z?��H��?<?b?post��\��J��mEI?Qwebf��`P������~CP?�������?=??����??����?.?x?c`d``?b `b`d`dT?,`�?�U�x?c`f??8???????L?t???Ja???~?????�?\, aF$% | |
| ?�g? | |
| e�x?c```f?`F???| ?????d30?>`???????:????????�?d? p???�bdLh | |
| ?=��?M?���D���??�x??? `T??7????9'?e?I23?3?IfK2?B 9?CX"?AP??�?R???Z+?.Z?^[QG?뽶?j/?.?B{??+????V?̛????93g? ?_????????????>??!?F??VYBd???'(i???? ?[?P?w'=)K?K????T???$??w??p?I~VO??6(KN>2??!?ۿ??(???4B???#2nr???`??܁?&G8?n?t?#?V/???4?nթ?F??3??Ny2 | |
| xJk? | |
| hD*(?֧?D??T??(?Q??WY??4????4C"9?8@?~????G?{\??O<iPC5N?S?$???|\?~????a$???z[zz????h?:ՓQd,i!md?;B?jd | |
| ???P?̧?t?&ޝ$?"???tk?o?3d?`?_?Ȯ?sd?Y+?1R?aŜ?/_?sz&?]E?Z????_-}p%?????_ad`?D???D?M":Y<| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # adapted from https://gist.github.com/simonjbeaumont/4672606 | |
| function tmup() { | |
| local IFS | |
| echo -n "Updating to latest tmux environment..."; | |
| export IFS=$'\n'; | |
| for line in $(tmux showenv -t $(tmux display -p "#S")); | |
| do | |
| if [[ "$line" == -* ]]; then | |
| unset $(echo $line | cut -c2-); | |
| elif [[ -n "$line" ]] ; then |
For a nice, relatively brief overview of Git's basic usage, please see the Pro Git book by Scott Chacon, available for free online. If you want to understand the nitty-gritty, check out Git From the Bottom Up.
Otherwise, here are a list of typical "dos" and "don'ts" for Git, some with a specific eye towards Open MPI:
- make smaller, logically self-contained commits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Keybase proof | |
| I hereby claim: | |
| * I am goodell on github. | |
| * I am goodell (https://keybase.io/goodell) on keybase. | |
| * I have a public key whose fingerprint is B6DF 779C 9609 BAC3 4D66 5A2E B367 4375 0172 8814 | |
| To claim this, I am signing this object: |