File: git.emacsen-startup

package info (click to toggle)
git 1%3A1.7.2.5-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 18,036 kB
  • ctags: 13,298
  • sloc: ansic: 108,217; sh: 74,973; perl: 23,370; tcl: 20,137; python: 3,843; makefile: 2,885; lisp: 1,779; asm: 98
file content (144 lines) | stat: -rw-r--r-- 9,066 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
;; -*-emacs-lisp-*-
;;
;; Emacs startup file, e.g.  /etc/emacs/site-start.d/50git-core.el
;; for the Debian git-core package

(if (and (not (featurep 'xemacs))
	 (string< emacs-version "23"))
    ;; Do not load or activate these under Emacs 23.x which already
    ;; contains git support
    (progn
      ;; From http://www.emacswiki.org/cgi-bin/wiki/Git
      (add-to-list
       'load-path
       "/usr/share/doc/git-core/contrib/emacs"
       'append)

      (autoload 'git-get-env-strings                  "git" "" nil)
      (autoload 'git-call-process-env                 "git" "" nil)
      (autoload 'git-call-process-display-error       "git" "" nil)
      (autoload 'git-call-process-env-string          "git" "" nil)
      (autoload 'git-run-process-region               "git" "" nil)
      (autoload 'git-run-command-buffer               "git" "" nil)
      (autoload 'git-run-command-region               "git" "" nil)
      (autoload 'git-run-hook                         "git" "" nil)
      (autoload 'git-get-string-sha1                  "git" "" nil)
      (autoload 'git-get-committer-name               "git" "" nil)
      (autoload 'git-get-committer-email              "git" "" nil)
      (autoload 'git-get-commits-coding-system        "git" "" nil)
      (autoload 'git-get-logoutput-coding-system      "git" "" nil)
      (autoload 'git-escape-file-name                 "git" "" nil)
      (autoload 'git-success-message                  "git" "" nil)
      (autoload 'git-get-top-dir                      "git" "" nil)
      (autoload 'git-append-to-ignore                 "git" "" nil)
      (autoload 'git-rev-parse                        "git" "" nil)
      (autoload 'git-config                           "git" "" nil)
      (autoload 'git-symbolic-ref                     "git" "" nil)
      (autoload 'git-update-ref                       "git" "" nil)
      (autoload 'git-read-tree                        "git" "" nil)
      (autoload 'git-write-tree                       "git" "" nil)
      (autoload 'git-commit-tree                      "git" "" nil)
      (autoload 'git-empty-db-p                       "git" "" nil)
      (autoload 'git-get-merge-heads                  "git" "" nil)
      (autoload 'git-get-commit-description           "git" "" nil)
      (autoload 'git-clear-status                     "git" "" nil)
      (autoload 'git-set-fileinfo-state               "git" "" nil)
      (autoload 'git-status-filenames-map             "git" "" nil)
      (autoload 'git-set-filenames-state              "git" "" nil)
      (autoload 'git-state-code                       "git" "" nil)
      (autoload 'git-status-code-as-string            "git" "" nil)
      (autoload 'git-file-type-as-string              "git" "" nil)
      (autoload 'git-rename-as-string                 "git" "" nil)
      (autoload 'git-permissions-as-string            "git" "" nil)
      (autoload 'git-fileinfo-prettyprint             "git" "" nil)
      (autoload 'git-insert-info-list                 "git" "" nil)
      (autoload 'git-run-diff-index                   "git" "" nil)
      (autoload 'git-find-status-file                 "git" "" nil)
      (autoload 'git-run-ls-files                     "git" "" nil)
      (autoload 'git-run-ls-files-cached              "git" "" nil)
      (autoload 'git-run-ls-unmerged                  "git" "" nil)
      (autoload 'git-get-exclude-files                "git" "" nil)
      (autoload 'git-run-ls-files-with-excludes       "git" "" nil)
      (autoload 'git-update-status-files              "git" "" nil)
      (autoload 'git-mark-files                       "git" "" nil)
      (autoload 'git-marked-files                     "git" "" nil)
      (autoload 'git-marked-files-state               "git" "" nil)
      (autoload 'git-refresh-files                    "git" "" nil)
      (autoload 'git-refresh-ewoc-hf                  "git" "" nil)
      (autoload 'git-get-filenames                    "git" "" nil)
      (autoload 'git-update-index                     "git" "" nil)
      (autoload 'git-run-pre-commit-hook              "git" "" nil)
      (autoload 'git-do-commit                        "git" "" t)
      (autoload 'git-mark-file                        "git" "" t)
      (autoload 'git-unmark-file                      "git" "" t)
      (autoload 'git-unmark-file-up                   "git" "" t)
      (autoload 'git-mark-all                         "git" "" t)
      (autoload 'git-unmark-all                       "git" "" t)
      (autoload 'git-toggle-all-marks                 "git" "" t)
      (autoload 'git-next-file                        "git" "" t)
      (autoload 'git-prev-file                        "git" "" t)
      (autoload 'git-next-unmerged-file               "git" "" t)
      (autoload 'git-prev-unmerged-file               "git" "" t)
      (autoload 'git-add-file                         "git" "" t)
      (autoload 'git-ignore-file                      "git" "" t)
      (autoload 'git-remove-file                      "git" "" t)
      (autoload 'git-revert-file                      "git" "" t)
      (autoload 'git-resolve-file                     "git" "" t)
      (autoload 'git-remove-handled                   "git" "" t)
      (autoload 'git-toggle-show-uptodate             "git" "" t)
      (autoload 'git-toggle-show-ignored              "git" "" t)
      (autoload 'git-toggle-show-unknown              "git" "" t)
      (autoload 'git-expand-directory                 "git" "" nil)
      (autoload 'git-setup-diff-buffer                "git" "" nil)
      (autoload 'git-diff-file                        "git" "" t)
      (autoload 'git-diff-file-merge-head             "git" "" t)
      (autoload 'git-diff-unmerged-file               "git" "" nil)
      (autoload 'git-diff-file-base                   "git" "" t)
      (autoload 'git-diff-file-mine                   "git" "" t)
      (autoload 'git-diff-file-other                  "git" "" t)
      (autoload 'git-diff-file-combined               "git" "" t)
      (autoload 'git-diff-file-idiff                  "git" "" t)
      (autoload 'git-log-file                         "git" "" t)
      (autoload 'git-log-edit-files                   "git" "" nil)
      (autoload 'git-log-edit-diff                    "git" "" nil)
      (autoload 'git-append-sign-off                  "git" "" nil)
      (autoload 'git-setup-log-buffer                 "git" "" nil)
      (autoload 'git-commit-file                      "git" "" t)
      (autoload 'git-setup-commit-buffer              "git" "" nil)
      (autoload 'git-get-commit-files                 "git" "" nil)
      (autoload 'git-amend-commit                     "git" "" t)
      (autoload 'git-find-file                        "git" "" t)
      (autoload 'git-find-file-other-window           "git" "" t)
      (autoload 'git-find-file-imerge                 "git" "" t)
      (autoload 'git-view-file                        "git" "" t)
      (autoload 'git-refresh-status                   "git" "" t)
      (autoload 'git-status-quit                      "git" "" t)
      (autoload 'git-status-mode                      "git" "" nil)
      (autoload 'git-find-status-buffer               "git" "" nil)
      (autoload 'git-status                           "git" "" t)
      (autoload 'git-update-saved-file                "git" "" nil)
      (autoload 'git-help                             "git" "" t)

      (autoload 'git-blame-color-scale                "git-blame" "" nil)
      (autoload 'git-blame-random-pop                 "git-blame" "" nil 'macro)
      (autoload 'git-blame-mode                       "git-blame" "" t)
      (autoload 'git-blame-mode-on                    "git-blame" "" nil)
      (autoload 'git-blame-mode-off                   "git-blame" "" nil)
      (autoload 'git-reblame                          "git-blame" "Minor mode for incremental blame for Git" t)
      (autoload 'git-blame-run                        "git-blame" "" nil)
      (autoload 'remove-git-blame-text-properties     "git-blame" "" nil)
      (autoload 'git-blame-cleanup                    "git-blame" "" nil)
      (autoload 'git-blame-update-region              "git-blame" "" nil)
      (autoload 'git-blame-sentinel                   "git-blame" "" nil)
      (autoload 'git-blame-filter                     "git-blame" "" nil)
      (autoload 'git-blame-parse                      "git-blame" "" nil)
      (autoload 'git-blame-new-commit                 "git-blame" "" nil)
      (autoload 'git-blame-add-info                   "git-blame" "" nil)
      (autoload 'git-blame-current-commit             "git-blame" "" nil)
      (autoload 'git-describe-commit                  "git-blame" "" nil)
      (autoload 'git-blame-identify                   "git-blame" "" t)
      (autoload 'git-blame-after-change               "git-blame" "" nil)
      (autoload 'git-blame-enq-update                 "git-blame" "" nil)
      (autoload 'git-blame-delayed-update             "git-blame" "" nil)))

;; End of file