並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 31 件 / 31件

新着順 人気順

fugitiveの検索結果1 - 31 件 / 31件

  • fugitive.vim が便利すぎたのでメモ - 反省はしても後悔はしない

    Vim から Git を操作するプラグインとしては、今まで git.vim を使っていたんですが、fugitive.vim のほうが便利だったので乗り換えました。 詳しい説明はここ VimmerなGit使いはfugitive.vimを今すぐ入れたほうがいい - SELECT * FROM life; ここでは、自分が特に便利だと思った機能を書きます。 git add -p をグラフィカルに行う git add -p を使うと、複数の変更箇所のうちどの変更をコミットに含めるかを選ぶことができますが、fugitive の :Gdiff を使うとこれをグラフィカルに行うことができます。 :Gdiff コマンドはインデックスとワークツリーの状態の差分を vim の diff で表示します。 こんな感じ たとえば、スタイルシートの設定(上のほうの差分)はコミットに含めたいけど、クラス属性の付与(下の

      fugitive.vim が便利すぎたのでメモ - 反省はしても後悔はしない
    • vim-fugitiveがやっぱり便利

      このエントリーはGit Advent Calendar / Juneの十四日目です。十三日目は Cside_ さんの「ブランチ名 + 作業状態 + stash数 をzshのプロンプトに表示」でした。 vim-fugitive便利ですよね。いい機会だったのでGitのVim-wrapperのひとつvim-fugitiveを復習してみました。 vim-fugitiveの便利なところと言えば、2画面で前後のコードも含めてdiffが見られるところとか、blameが見やすくて楽しいってところだけだと思ってたんですが、調べてみるともっと便利なことがわかりました。 今回は以下について書いてます。 :Gread :Gedit :Ggrep 補完 3-way diff いままで いままでのボクはと言えば、ただ:GstatusでVimエディタ上にステータス画面を開いて-(add/reset)したり、D(diff

        vim-fugitiveがやっぱり便利
      • GitHub - tpope/vim-fugitive: fugitive.vim: A Git wrapper so awesome, it should be illegal

        Fugitive is the premier Vim plugin for Git. Or maybe it's the premier Git plugin for Vim? Either way, it's "so awesome, it should be illegal". That's why it's called Fugitive. The crown jewel of Fugitive is :Git (or just :G), which calls any arbitrary Git command. If you know how to use Git at the command line, you know how to use :Git. It's vaguely akin to :!git but with numerous improvements: Th

          GitHub - tpope/vim-fugitive: fugitive.vim: A Git wrapper so awesome, it should be illegal
        • fugitive.vim と tig による git 生活 - 藻ログ

          GWの出だしから熱を出して寝込んでいて,そういえば普段 fugitive.vim と tig をあんまりちゃんと使い分けてないなとぼんやり考えた. fugitive.vim GitHub - tpope/vim-fugitive: fugitive.vim: a Git wrapper so awesome, it should be illegal vim から git を呼べるようにするラッパープラグイン. dein.vim で以下のように入れている. [[plugins]] repo = "tpope/vim-fugitive" hook_add = 'source ~/.config/nvim/userautoload/plugins/plugins-vim-fugitive.vim' dein については以下を参照. dein.vimにお引越し - 藻ログ 使い方は :h fug

            fugitive.vim と tig による git 生活 - 藻ログ
          • fugitive.vim をもっと使いこなす - 反省はしても後悔はしない

            この記事は Vim Advent Calendar 2013 の 16 日目の記事です。 昨日は id:deris さんの Vimmerなら2013年中に試しておきたい海外産Vim plugin 8選 - derisの日記 でした。知らないプラグインあったので時間ができたら試してみたいですね。 進捗ダメです すみません。本当は自作プラグインを大々的に紹介するつもりだったのですが、進捗ダメでした。今日は fugitive.vim の小ネタについて書きます。 次回作にご期待ください。 fugitive.vim について Vim から Git を便利に使うプラグインです。詳しくは VimmerなGit使いはfugitive.vimを今すぐ入れたほうがいい - SELECT * FROM life; fugitive.vim が便利すぎたのでメモ - 反省はしても後悔はしない (ステマ) みたいな

              fugitive.vim をもっと使いこなす - 反省はしても後悔はしない
            • Fugitive.vim - a complement to command line git

              Using the :Git command, you can run any arbitrary git command from inside Vim. I prefer to switch to the shell for anything that generates a log of output, such as git log for example. But commands that generate little or no output are fair game for running from inside Vim (:Git checkout -b experimental for example). At Vim’s command line, the % symbol has a special meaning: it expands to the full

              • Fugitive.vim - resolving merge conflicts with vimdiff

                When git branches are merged, there is always the chance of a conflict arising if a file was modified in both the target and merge branches. You can resolve merge conflicts using a combination of fugitive’s :Gdiff command, and Vim’s built in diffget and diffput. In this episode, we’ll find out how. This is the third in a five part series on fugitive.vim. :Gdiff on a conflicted file opens 3-way dif

                • Fugitive.vim - exploring the history of a git repository

                  Git provides tools for searching the contents of files, commit messages, and even whether text was added or removed by a commit. In this episode, we’ll see how fugitive’s Ggrep and Glog commands wrap this functionality up so that we can search the contents and history of a git repo from right inside of Vim. This is the last of our five part series on fugitive.vim.

                  • Quickfixを知ってからfugitiveを使うと捗る - Qiita

                    vimgrepとQuickfix知らないVimmerはちょっとこっち来い - http://qiita.com/items/0c1aff03949cb1b8fe6b こんな記事が上がっていたので、勝手に応用編を書いてみる。 まあ、以前LT等で話したことをQiitaに書き移してるだけですが。 QuickFixの拡張 QFixGrepというプラグインがあります。 これを入れていると、以下のような事が出来ます。 QuickFixバッファで選択した検索対象をプレビューして確認できる QuickFixの表示を更に絞り込んで検索 QuickFixの表示をファイル名、更新時間、内容でソートする 他にもいくつか機能がありますし、Windowsで利用するのに便利な解説などもあります。 また、以前自分のブログなどで書きましたが、qfreplaceというプラグインがあります。 QuickFixで出力されている各

                      Quickfixを知ってからfugitiveを使うと捗る - Qiita
                    • fugitive.vimの使い方を良く忘れる | iii ThreeTreesLight

                      fugitive.vimの使い方を良く忘れる fugitive.vimを積極的に使ってこなかったため、使い方を忘れる始末。 というわけで、備忘録代わりにでも書きたいと思います。 過去ソースを参照しつつ修正するとき方法1::Gdiff左ウィンドウがインデックス。右ウィンドウがワークでdp。 方法2::Gblame左ウィンドウがコミットログ。右ウィンドウがソース ~ : 見たいコミットログを選択して、~でHAED~相当の当該ログのソース P : 見たいコミットログを選択して、~でHAED~相当の当該ログのソース enter : 当該ログのコミットログ そんなこんなでコピペして直したり。 方法3: :Gstatus対象ファイルにカーソルを合わせDでVimDiff表示 git addからcommit、そしてgit pushgit add ( 編集中ファイルのみ ):Gwrite もしくは :Gst

                      • Macでvim-fugitiveのGbrowseが動くまで - クラウドワークス エンジニアブログ

                        こんにちは。 クラウドソーシングで最大手のクラウドワークスでエンジニアをやっています、KIMIです。 つい先日少し時間ができたので、以前から動かなくて困っていた vim-fugitive のGbrowse コマンドを調査して動くようにした時のログなんかを書きたいと思います。 Gbrowse とは、現在開いているファイルをGitHubのURLにしてブラウザで開いてくれるコマンドです。slack にURLを貼り付けるときに便利そうです。 しかし、Mac のデフォルトのvim (/usr/bin/vim)では動かないので、fugitive.vim のソースを見ていきます。 github.com Gbrowseを動かす Gbrowse あたりのコード if a:bang if has('clipboard') let @* = url endif return 'echomsg '.string(

                          Macでvim-fugitiveのGbrowseが動くまで - クラウドワークス エンジニアブログ
                        • fugitiveの:Gblameで更に過去にさかのぼる方法 - Qiita

                          :Gblame で git-blame の結果を表示できますが、ある行が変更されるその前の状態を表示したい場合は、その行にカーソルを移動させて ~ を押します。すると、その行を変更したcommitのsha1が012345だったとすると、 git blame 012345^ -- file を実行したような結果がvimdiffで表示されます。 ちなみに ~ は [count] を受け取るので 3~ は git blame 012345^^^ - file になります。また - は git blame 012345 -- file です。便利 tips: 空白差分だけの変更を無視する そもそも ~ が必要になる場面というのは、blameで得られた差分がインデントの変更みたいな、実質中身のない変更の場合のことも多いです。 git-blame は -w オプションでそういった空白のみの変更を無視し

                            fugitiveの:Gblameで更に過去にさかのぼる方法 - Qiita
                          • VimmerなGit使いはfugitive.vimを今すぐ入れたほうがいい - SELECT * FROM life;

                            fugitiveはvim用のgitラッパープラグインだ。 fugitiveを使うとgitを操作するためにいちいちvimから抜ける必要が劇的に減る。 例えばaddやcommitだけでなく、ソースの変更箇所をパッチ形式でなくvimdiffで簡単に表示できるのは非常に便利だ。 みんなが大好きなgit-blameもコマンド1つでvim上で綺麗に表示してくれる。 Vim+Gitな方は是非fugitive.vimを使ってみて欲しい。 github: https://github.com/tpope/vim-fugitive コマンド早見表 これらのコマンドは全てgitリポジトリ内でのみ操作可能だ。 :Gstatus 新しい窓を作ってgit statusを表示 :Gwrite 現在開いているソースをgit add :Gread 現在開いているソースの直前のコミット時のソースを表示 :Gmove dest

                              VimmerなGit使いはfugitive.vimを今すぐ入れたほうがいい - SELECT * FROM life;
                            • Fugitive.vim - working with the git index

                              The fugitive plugin provides an interactive status window, where you can easily stage and review your changes for the next commit. The :Gdiff command visualizes the changes made to a file, by comparing the working copy with the index. In this episode, we’ll learn how to stage hunks of changes to the index without using the git add --patch command. This is the second of a five part series on fugiti

                              • Fugitive.vim - browsing the git object database

                                With the fugitive plugin, you’re not limited to just working with files in your working tree. The :Gedit command allows you to open files in other branches, and to browse any git object, including tags, commits and trees. Plus, if your repository is hosted on github, you can easily bring up the webpage for any git object using the :Gbrowse command. This is the penultimate of a five part series on

                                • 青木玄徳オフィシャルブログ「FUGITIVE」Powered by Ameba

                                  スタッフより連投申し訳ございません。 【青木玄徳 FC限定 X'mas party2015 】 詳細解禁いたしました! 2015年11月15日23時59分までの新規ご入会でも間に合います! ご入会の詳細はこちらへ⇒ http://aokitsunenori.com/ 申込URL⇒ https://fs224.formasp.jp/b754/form1/

                                  • Bosnian Serb war fugitive Ratko Mladic captured

                                    On May 26, 2011, notorious war fugitive Ratko Mladic was arrested in a village in northern Serbia. The former Bosnian Serb general is accused of overseeing the worst massacre in Europe since the end of World War II. He was indicted 16 years ago for his role in the 1995 slaughter of 8,000 Muslim men and boys in Srebenica and for war crimes in the four-year siege of Sarajevo that killed 10,000, incl

                                      Bosnian Serb war fugitive Ratko Mladic captured
                                    • vimからgit操作をする vim-fugitive.vim が便利 | わすれないように.

                                      最近、仕事や、それ以外にもdotfiles管理等で バージョン管理にgitを使うことが多くなった。(既にSubversionは過去のプロジェクトのソースを見るためくらいにしか使っていない。)eclipseで開発して git 操作はターミナルからコマンドを叩くということをやっていた。しかしvimで開発するとなると、vimには豊富なプラグインがある。(eclipse にも EGitというpluginがあってhistoryとdiffを見るのには便利に使っていた。)。今、旬なgitのプラグインともなれば数種類あるようだけど、その中で見つけたのが vim-fugitive.vim というプラグイン。 単にvimからgit のコマンドを実行したいだけならpluginを入れなくともできるが、vim-fugitive.vim を入れると、:Gstatus の結果ウィンドで ‘-’ キーを押すと、git a

                                      • ABS-CBN News on Twitter: "Bureau of Immigration says it has arrested on Sunday a Japanese-German-Israeli fugitive wanted by Japanese authorit… https://t.co/iuCYaXrnYa"

                                        Bureau of Immigration says it has arrested on Sunday a Japanese-German-Israeli fugitive wanted by Japanese authorit… https://t.co/iuCYaXrnYa

                                          ABS-CBN News on Twitter: "Bureau of Immigration says it has arrested on Sunday a Japanese-German-Israeli fugitive wanted by Japanese authorit… https://t.co/iuCYaXrnYa"
                                        • BBC NEWS | Europe | Serbia captures fugitive Karadzic

                                          Officials said no further information about his detention would be released until the action team of prosecutors, police and intelligence teams meet in Belgrade on Tuesday morning, the BBC's Eastern Europe correspondent Nick Thorpe says. "Radovan Karadzic was located and arrested tonight [Monday evening]" by Serbian security officers, a statement by the office of President Boris Tadic said, withou

                                          • From "caliph" to fugitive: IS leader Baghdadi's new life on the run

                                            A man purported to be the reclusive leader of the militant Islamic State Abu Bakr al-Baghdadi making what would have been his first public appearance, at a mosque in the centre of Iraq's second city, Mosul, according to a video recording posted on the Internet on July 5, 2014, in this still image taken from video. REUTERS/Social... Acquire Licensing Rights Read more BAGHDAD/ERBIL, Iraq (Reuters) -

                                              From "caliph" to fugitive: IS leader Baghdadi's new life on the run
                                            • Fugitive Toys: Home to the largest selection of Funko Pop Vinyls

                                              Bandai/Banpresto Shop All Bandai Shop All Banpresto Fluffy Puffy Qposket BT21 Disney Shop All Disney Disney Pins Disney Princess Disney Tsum Tsum Disney Vinylmation Dorbz Disney FiGPiN Disney Pop! Disney Funko Shop All Funko Funko Pop! Vinyl Funko Soda Funko 5 Star Funko Action Figure Funko Advent Calendar FunkO's Cereal Funko Dorbz Funko Fabrikations Funko Funkoverse Funko Games Funko Hikari Funk

                                                Fugitive Toys: Home to the largest selection of Funko Pop Vinyls
                                              • fugitive.vimの使い方を良く忘れる | iii ThreeTreesLight

                                                fugitive.vimの使い方を良く忘れる fugitive.vimを積極的に使ってこなかったため、使い方を忘れる始末。 というわけで、備忘録代わりにでも書きたいと思います。 過去ソースを参照しつつ修正するとき方法1::Gdiff左ウィンドウがインデックス。右ウィンドウがワークでdp。 方法2::Gblame左ウィンドウがコミットログ。右ウィンドウがソース ~ : 見たいコミットログを選択して、~でHAED~相当の当該ログのソース P : 見たいコミットログを選択して、~でHAED~相当の当該ログのソース enter : 当該ログのコミットログ そんなこんなでコピペして直したり。 方法3: :Gstatus対象ファイルにカーソルを合わせDでVimDiff表示 git addからcommit、そしてgit pushgit add ( 編集中ファイルのみ ):Gwrite もしくは :Gst

                                                • Agnes Chow: Fugitive activist says Hong Kong is now a 'place of fear'

                                                  Hong Kong is now a "place full of fear" for pro-democracy activist Agnes Chow, who says she has no plans to go home Hong Kong is now a "place full of fear", pro-democracy activist Agnes Chow, who recently jumped bail, said.

                                                    Agnes Chow: Fugitive activist says Hong Kong is now a 'place of fear'
                                                  • fugitiveの意味・使い方・読み方

                                                    【名】逃亡者{とうぼう しゃ}、脱走者{だっそう しゃ}、放浪者{ほうろう しゃ}、亡命者{ぼうめい しゃ}◆可算{かさん}【形】逃亡中{とうぼう ちゅう}の〔色が〕あせやすいつかの間の、一時的{いちじ てき}な、一過性{いっかせい}の【レベル】10、【発音】fjúːdʒətiv、【@】フュージティヴ、【変化】《複》fugitives、【分節】fu・gi・tive

                                                    • Last Aum cult fugitive Katsuya Takahashi arrested in Japan

                                                      The BBC's Roland Buerk says Mr Takahashi was spotted at an internet cafe by a member of the public Police in Japan have arrested the last fugitive of the Aum Shinrikyo doomsday cult, ending a 17-year manhunt. Katsuya Takahashi is suspected of involvement in the 1995 sarin nerve gas attack on the Tokyo subway system that killed 13 people.

                                                        Last Aum cult fugitive Katsuya Takahashi arrested in Japan
                                                      • GitHub - tpope/vim-rhubarb: rhubarb.vim: GitHub extension for fugitive.vim

                                                        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                          GitHub - tpope/vim-rhubarb: rhubarb.vim: GitHub extension for fugitive.vim
                                                        • Fugitive Thought -

                                                          Fugitive Thought Login | Register | RSS | Help Fugitive Home Projects About Us Links / Fugitive Thought / No Such Blog Entry Home Page About Us | Site Map | Privacy Policy | Contact Us | ©2006 Justin DeMaris & Steven Maresca

                                                          • In His Last Days, Qaddafi Wearied of Fugitive’s Life (Published 2011)

                                                            The results of a NATO airstrike on Friday on the Qaddafi stronghold in the outskirts of Surt.Credit...Manu Brabo/Associated Press MISURATA, Libya — After 42 years of absolute power in Libya, Col. Muammar el-Qaddafi spent his last days hovering between defiance and delusion, surviving on rice and pasta his guards scrounged from the emptied civilian houses he moved between every few days, according

                                                              In His Last Days, Qaddafi Wearied of Fugitive’s Life (Published 2011)
                                                            • vundleとfugitiveによろしくやってもらう - Meltdown Countdown rev.

                                                              今こそ!git の branch を vim のステータスラインに表示!!するとき!!! - Meltdown Countdown で %{fugitive#statusline()} について書きました。 VundleでVundleをBundleしてみる - Meltdown Countdown でVundleについて書きました。 ちなみに、Vundle自体をBundleするという方針は開発者さまもその後に推薦されてます → vundle is a bundle too | gmarik.info で、同開発者様のエントリでこんなものがありました。 chicken or egg dilemma | gmarik.info Vundleでいれたプラグインに依存した書き方を.vimrcにしていると、新環境で:BundleInstallできなくて困るとのこと。たとえば、statuslineに%

                                                              • Fugitive Toys: Home to the largest selection of Funko Pop Vinyls

                                                                Bandai/Banpresto Shop All Bandai Shop All Banpresto Fluffy Puffy Qposket BT21 Disney Shop All Disney Disney Pins Disney Princess Disney Tsum Tsum Disney Vinylmation Dorbz Disney FiGPiN Disney Pop! Disney Funko Shop All Funko Funko Pop! Vinyl Funko Soda Funko 5 Star Funko Action Figure Funko Advent Calendar FunkO's Cereal Funko Dorbz Funko Fabrikations Funko Funkoverse Funko Games Funko Hikari Funk

                                                                  Fugitive Toys: Home to the largest selection of Funko Pop Vinyls
                                                                1