index
:
git
master
git
Fast-forward packages
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
builtin
/
mv.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
global: mark code units that generate warnings with `-Wsign-compare`
Patrick Steinhardt
2024-12-06
1
-0
/
+2
*
builtin: remove USE_THE_REPOSITORY_VARIABLE from builtin.h
John Cai
2024-09-13
1
-1
/
+2
*
builtin: add a repository parameter for builtin functions
John Cai
2024-09-13
1
-1
/
+4
*
mv: replace src_dir with a strvec
Jeff King
2024-05-30
1
-6
/
+4
*
mv: factor out empty src_dir removal
Jeff King
2024-05-30
1
-19
/
+23
*
mv: move src_dir cleanup to end of cmd_mv()
Jeff King
2024-05-30
1
-1
/
+1
*
builtin/mv: fix leaks for submodule gitfile paths
Patrick Steinhardt
2024-05-27
1
-19
/
+25
*
builtin/mv: refactor to use `struct strvec`
Patrick Steinhardt
2024-05-27
1
-65
/
+60
*
builtin/mv duplicate string list memory
Patrick Steinhardt
2024-05-27
1
-6
/
+13
*
builtin/mv: refactor `add_slash()` to always return allocated strings
Patrick Steinhardt
2024-05-27
1
-18
/
+20
*
builtin: stop using `the_index`
Patrick Steinhardt
2024-04-18
1
-34
/
+34
*
treewide: remove unnecessary includes in source files
Elijah Newren
2023-12-26
1
-1
/
+0
*
Merge branch 'jc/mv-d-to-d-error-message-fix'
Junio C Hamano
2023-08-29
1
-1
/
+1
|
\
|
*
mv: fix error for moving directory to another
Junio C Hamano
2023-08-12
1
-1
/
+1
*
|
Merge branch 'st/mv-lstat-fix'
Junio C Hamano
2023-08-15
1
-2
/
+2
|
\
\
|
*
|
mv: handle lstat() failure correctly
Sebastian Thiel
2023-08-09
1
-2
/
+2
|
|
/
*
|
git-compat-util: move alloc macros to git-compat-util.h
Calvin Wan
2023-07-05
1
-1
/
+0
*
|
read-cache*.h: move declarations for read-cache.c functions from cache.h
Elijah Newren
2023-06-21
1
-0
/
+1
*
|
name-hash.h: move declarations for name-hash.c from cache.h
Elijah Newren
2023-06-21
1
-0
/
+1
|
/
*
hash-ll.h: split out of hash.h to remove dependency on repository.h
Elijah Newren
2023-04-24
1
-0
/
+1
*
object-file.h: move declarations for object-file.c functions from cache.h
Elijah Newren
2023-04-11
1
-0
/
+1
*
treewide: be explicit about dependence on advice.h
Elijah Newren
2023-04-11
1
-0
/
+1
*
setup.h: move declarations for setup.c functions from cache.h
Elijah Newren
2023-03-21
1
-0
/
+1
*
environment.h: move declarations for environment.c functions from cache.h
Elijah Newren
2023-03-21
1
-0
/
+1
*
abspath.h: move absolute path functions from cache.h
Elijah Newren
2023-03-21
1
-0
/
+1
*
treewide: be explicit about dependence on gettext.h
Elijah Newren
2023-03-21
1
-0
/
+1
*
alloc.h: move ALLOC_GROW() functions from cache.h
Elijah Newren
2023-02-24
1
-0
/
+1
*
cocci & cache.h: apply pending "index_cache_pos" rule
Ævar Arnfjörð Bjarmason
2023-02-10
1
-3
/
+5
*
cocci: apply "pending" index-compatibility to some "builtin/*.c"
Ævar Arnfjörð Bjarmason
2022-11-21
1
-8
/
+8
*
cocci & cache.h: apply variable section of "pending" index-compatibility
Ævar Arnfjörð Bjarmason
2022-11-21
1
-9
/
+10
*
cocci & cache.h: apply a selection of "pending" index-compatibility
Ævar Arnfjörð Bjarmason
2022-11-21
1
-1
/
+3
*
cocci & cache.h: remove rarely used "the_index" compat macros
Ævar Arnfjörð Bjarmason
2022-11-21
1
-2
/
+2
*
Merge branch 'sy/mv-out-of-cone'
Junio C Hamano
2022-09-19
1
-27
/
+134
|
\
|
*
builtin/mv.c: fix possible segfault in add_slash()
Shaoxuan Yuan
2022-09-10
1
-1
/
+1
|
*
mv: check overwrite for in-to-out move
Shaoxuan Yuan
2022-08-10
1
-0
/
+12
|
*
advice.h: add advise_on_moving_dirty_path()
Shaoxuan Yuan
2022-08-10
1
-0
/
+3
|
*
mv: cleanup empty WORKING_DIRECTORY
Shaoxuan Yuan
2022-08-10
1
-0
/
+27
|
*
mv: from in-cone to out-of-cone
Shaoxuan Yuan
2022-08-10
1
-9
/
+62
|
*
mv: remove BOTH from enum update_mode
Shaoxuan Yuan
2022-08-10
1
-1
/
+0
|
*
mv: check if <destination> is a SKIP_WORKTREE_DIR
Shaoxuan Yuan
2022-08-10
1
-4
/
+14
|
*
mv: free the with_slash in check_dir_in_index()
Shaoxuan Yuan
2022-08-10
1
-4
/
+9
|
*
mv: rename check_dir_in_index() to empty_dir_has_sparse_contents()
Shaoxuan Yuan
2022-08-10
1
-13
/
+11
*
|
Merge branch 'jc/builtin-mv-move-array'
Junio C Hamano
2022-07-18
1
-9
/
+7
|
\
\
|
|
/
|
/
|
|
*
builtin/mv.c: use the MOVE_ARRAY() macro instead of memmove()
Junio C Hamano
2022-07-10
1
-9
/
+7
*
|
mv: add check_dir_in_index() and solve general dir check issue
Shaoxuan Yuan
2022-07-01
1
-6
/
+44
*
|
mv: use flags mode for update_mode
Shaoxuan Yuan
2022-07-01
1
-8
/
+17
*
|
mv: check if <destination> exists in index to handle overwriting
Shaoxuan Yuan
2022-07-01
1
-3
/
+12
*
|
mv: check if out-of-cone file exists in index with SKIP_WORKTREE bit
Shaoxuan Yuan
2022-07-01
1
-2
/
+19
*
|
mv: decouple if/else-if checks using goto
Shaoxuan Yuan
2022-07-01
1
-59
/
+80
*
|
mv: update sparsity after moving from out-of-cone to in-cone
Shaoxuan Yuan
2022-07-01
1
-0
/
+17
|
/
[next]