Skip to content

Instantly share code, notes, and snippets.

View zacscoding's full-sized avatar
๐ŸŽฏ
Focusing :D

zac.kim zacscoding

๐ŸŽฏ
Focusing :D
  • toss
  • Korea
View GitHub Profile
@aafwu00
aafwu00 / intellij_tips.md
Last active June 3, 2024 01:59
IntelliJ Tips, ์ต์ˆ™์ง€ ์•Š์€ ๋ถ„๋“ค์„ ์œ„ํ•œ

IntelliJ Tip ๋ชจ์Œ 2019.2.1 ๊ธฐ์ค€

IntelliJ ์ต์ˆ™์ง€ ์•Š์€ ๋ถ„๊ป˜ ๋„์›€์ด ๋  tip, ๋ชจ์Œ

  • ๊ฐ€๊ธ‰์  ์ตœ์‹  ๋ฒ„์ „ ์œ ์ง€
  • ๋ฒ„์ „์ด 2019.x ํ˜•ํƒœ์ธ๋ฐ ์ €๊ฐ™์€ ๊ฒฝ์šฐ x ๊ฐ€ ๋ฐ”๋€”๋•Œ app cleaner ๋กœ ๊น”๋”ํžˆ ์ง€์šฐ๊ณ  ์‹œ์ž‘, ๊ฐœ์ทจ
    • intellij cache ๋ฅผ ๋งŽ์ด ์“ฐ๋Š”๋ฐ update ์‹œ ๊ผฌ์ด๋Š” ๊ฒฝ์šฐ๊ฐ€ ๊ฐ€๋” ์žˆ๊ณ , ๋ฐ€๋ฉด ์ดˆ๊ธฐ์— index ๊ณผ์ • ์ง€๋‚˜๋ฉด ์ข€ ๋น ๋ฆ„
    • ์‹ ๊ทœ macOS ๋ถ€ํ„ฐ Shift + Command + A ๊ฐ€ ์‹œ์Šคํ…œ ๋“ฑ๋ก ๋˜์–ด์žˆ์–ด์„œ System Preferences -> Keyboard -> Shortcuts -> Services -> Search man Page Index in Terminal ์ฒดํฌ ํ•ด์ œ

๋‹จ์ถ•ํ‚ค(Mac ๊ธฐ์ค€, keymap ์€ Default Mac OS X ์‚ฌ์šฉ)

  • IntelliJ Learn Plugin ์œผ๋กœ ๋”ฐ๋ผํ•˜๊ธฐ ๋ชจ๋“œ๊ฐ€ ์ƒ๊น€: ์ด๊ฒƒ๋งŒ ์•Œ์•„๋„ ๋จ
@piscisaureus
piscisaureus / pr.md
Created August 13, 2012 16:12
Checkout github pull requests locally

Locate the section for your github remote in the .git/config file. It looks like this:

[remote "origin"]
	fetch = +refs/heads/*:refs/remotes/origin/*
	url = [email protected]:joyent/node.git

Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:

@pksunkara
pksunkara / config
Last active April 17, 2025 05:11
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
[user]
name = Pavan Kumar Sunkara
email = [email protected]
username = pksunkara
[init]
defaultBranch = master
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta