this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[jj] update config for 0.33 to 0.35

+8 -9
+8 -9
private_dot_config/private_jj/config.toml
··· 76 push = ["util", "exec", "--", "bash", "-c", """ 77 tuggable="$(jj log -r 'closest_bookmark(@)..closest_pushable(@)' -T '"n"' --no-graph)" 78 [[ -n "$tuggable" ]] && jj tug 79 - pushable="$(jj log -r 'remote_bookmarks(remote=origin)..@' -T 'bookmarks' --no-graph)" 80 [[ -n "$pushable" ]] && jj git push || echo "Nothing to push." 81 closest="$(jj log -r 'closest_bookmark(@)' -n 1 -T 'bookmarks' --no-graph | cut -d ' ' -f 1)" 82 closest="${closest%\\*}" ··· 141 142 'recent_work' = 'ancestors(visible_heads(), 3) & mutable()' 143 144 - 145 - [git] 146 - push-new-bookmarks = true 147 - 148 [user] 149 name = "André Arko" 150 email = "andre@arko.net" ··· 167 diff-formatter = ":git" 168 169 [templates] 170 - description_title = 'description.first_line().trim_end()' 171 - description_body = 'description.remove_prefix(description.first_line()).trim_start()' 172 draft_commit_description = ''' 173 concat( 174 coalesce(description, default_commit_description, "\n"), ··· 180 diff.git(), 181 ) 182 ''' 183 - 184 - [template-aliases] 185 log_with_files = ''' 186 if(root, 187 format_root_commit(self), ··· 200 ) 201 ) 202 '''
··· 76 push = ["util", "exec", "--", "bash", "-c", """ 77 tuggable="$(jj log -r 'closest_bookmark(@)..closest_pushable(@)' -T '"n"' --no-graph)" 78 [[ -n "$tuggable" ]] && jj tug 79 + pushable="$(jj log -r 'remote_bookmarks(remote='exact:origin')..@' -T 'bookmarks' --no-graph)" 80 [[ -n "$pushable" ]] && jj git push || echo "Nothing to push." 81 closest="$(jj log -r 'closest_bookmark(@)' -n 1 -T 'bookmarks' --no-graph | cut -d ' ' -f 1)" 82 closest="${closest%\\*}" ··· 141 142 'recent_work' = 'ancestors(visible_heads(), 3) & mutable()' 143 144 [user] 145 name = "André Arko" 146 email = "andre@arko.net" ··· 163 diff-formatter = ":git" 164 165 [templates] 166 draft_commit_description = ''' 167 concat( 168 coalesce(description, default_commit_description, "\n"), ··· 174 diff.git(), 175 ) 176 ''' 177 log_with_files = ''' 178 if(root, 179 format_root_commit(self), ··· 192 ) 193 ) 194 ''' 195 + 196 + [template-aliases] 197 + description_title = 'description.first_line().trim_end()' 198 + description_body = 'description.remove_prefix(description.first_line()).trim_start()' 199 + 200 + [remotes.origin] 201 + auto-track-bookmarks = "glob:*"