ここに全部書いてます
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ローカルファイルを残したままリポジトリからファイル削除 | |
svn delete hoge.log --keep-local | |
svn commit hoge.log | |
#特定リビジョンにロールバック | |
svn update | |
svn merge -r HEAD:999 . | |
svn commit -m "rollback to revision 999" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# telnet mailsrv 25 | |
HELO mailsrv | |
MAIL FROM: [email protected] | |
RCPT TO: [email protected] | |
DATA | |
subject: test | |
from: [email protected] | |
to: [email protected] | |
Hello world. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%# | |
template for: https://github.com/hoco/markup | |
stylesheet from: https://gist.github.com/andyferra/2554919 | |
%><!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<style type="text/css"> | |
body { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# WARNING: REQUIRES /bin/sh | |
# | |
# - must run on /bin/sh on solaris 9 | |
# - must run on /bin/sh on AIX 6.x | |
# | |
# Copyright:: Copyright (c) 2010-2015 Chef Software, Inc. | |
# License:: Apache License, Version 2.0 | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); |